home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / appkit / NXBrowserCell.h < prev    next >
Text File  |  1993-03-15  |  983b  |  49 lines

  1. /*
  2.     NXBrowserCell.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "Cell.h"
  8.  
  9. @interface NXBrowserCell : Cell
  10. {
  11. }
  12.  
  13. + branchIcon;
  14. + branchIconH;
  15.  
  16. - init;
  17. - initTextCell:(const char *)aString;
  18. - free;
  19.  
  20. - (BOOL)isLeaf;
  21. - setLeaf:(BOOL)flag;
  22. - (BOOL)isLoaded;
  23. - setLoaded:(BOOL)flag;
  24. - reset;
  25. - set;
  26. - setImage:newImage;
  27. - image;
  28. - setAltImage:newAltImage;
  29. - altImage;
  30.  
  31. - (BOOL)isOpaque;
  32.  
  33. - calcCellSize:(NXSize *)theSize inRect:(const NXRect *)aRect;
  34.  
  35. - drawInside:(const NXRect *)cellFrame inView:controlView;
  36. - drawSelf:(const NXRect *)cellFrame inView:controlView;
  37. - highlight:(const NXRect *)cellFrame inView:controlView lit:(BOOL)lit;
  38.  
  39. /* 
  40.  * The following new... methods are now obsolete.  They remain in this  
  41.  * interface file for backward compatibility only.  Use Object's alloc method  
  42.  * and the init... methods defined in this class instead.
  43.  */
  44. + new;
  45. + newTextCell;
  46. + newTextCell:(const char *)aString;
  47.  
  48. @end
  49.